home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / JM_RemoteNC.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  63 lines

  1. #
  2. # This script was written by Joseph Mlodzianowski <joseph@rapter.net>
  3. #                            thanks to H.D.Moore
  4. #
  5.  
  6.  
  7. if(description)
  8. {
  9.  
  10.  script_id(11855);
  11.  script_version ("$Revision: 1.2 $");
  12. # script_cve_id("CAN-2003-00002");
  13.  name["english"] = "RemoteNC detection";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. This host appears to be running RemoteNC on this port
  18.  
  19. RemoteNC is a Backdoor which allows an intruder gain
  20. remote control of your computer.
  21.  
  22. An attacker may use it to steal your passwords.
  23.  
  24. Solution : see www.rapter.net/jm2.htm for details on removal
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Determines the presence of RemoteNC";
  30.  
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2003 J.Mlodzianowski");
  37.  family["english"] = "Backdoors";
  38.  script_family(english:family["english"]);
  39.  script_dependencie("find_service.nes", "JM_FsSniffer.nasl");
  40.  exit(0);
  41. }
  42.  
  43.  
  44. #
  45. # The code starts here
  46. #
  47.  
  48. include("misc_func.inc");
  49.  
  50. port = get_kb_item("Services/RemoteNC");
  51. if (!port) exit(0);
  52.  
  53. if(!get_port_state(port))exit(0);
  54.  
  55. soc = open_sock_tcp(port);
  56. if(!soc) exit(0);
  57.  
  58. r = recv(socket:soc, min:1, length:30);
  59. if(!r) exit(0);
  60.  
  61. if("RemoteNC Control Password:" >< r)  security_hole(port);
  62.